home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / sifttree < prev    next >
Text File  |  1994-08-01  |  1KB  |  36 lines

  1. #!/bin/csh -f
  2. #                 ~4Dgifts/toolbox/sifttree shell script
  3. #
  4. # wherever this script is run from, the ~4Dgifts/toolbox/.oasisrc 
  5. # file needs to be in the same directory;
  6. #
  7. # and, if necessary, explicitly [re]define the following 2 environment 
  8. # variables:
  9. #     TOOLBOXPATH is wherever the CD is mounted on yer machine,
  10. #     OASISIIIPATH is wherever you have put the oasisIII binary.
  11. #
  12. setenv TOOLBOXPATH  `pwd`
  13. setenv OASISIIIPATH `pwd`/searchtools
  14.  
  15. # have to set paths locations for oksvr:
  16. setenv FULPATH      $OASISIIIPATH
  17.  
  18. # oasisIII's app-defaults trickee-dick "short-cut":
  19. if {$?XUSERFILESEARCHPATH} then
  20.     setenv XUSERFILESEARCHPATH "$OASISIIIPATH/%N:$XUSERFILESEARCHPATH"
  21. else
  22.     setenv XUSERFILESEARCHPATH "$OASISIIIPATH/%N"
  23. endif
  24.  
  25. # and the location of xpsview for oasisIII:
  26. setenv XPSVIEW_ROOT $TOOLBOXPATH/.util/xpsview
  27.  
  28. # before launching
  29. $OASISIIIPATH/oksvr &
  30.  
  31. # comment the OKSERVER environment variable out if you 
  32. # want people to access oksvr/oasisIII from another machine.
  33. # (oasisIII/oksvr are a client/server relationship.)
  34. setenv OKSERVER localhost
  35. $OASISIIIPATH/oasisIII -k &
  36.